home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / lib / pm-utils / sleep.d / 95anacron < prev    next >
Text File  |  2009-09-17  |  732b  |  23 lines

  1. #!/bin/sh
  2.  
  3. # This script makes anacron jobs start to run when the machine is
  4. # woken up.  For a laptop, these are the closest parallels to turning 
  5. # on a desktop.
  6.  
  7. # The /etc/init.d/anacron script now normally tries to avoid running
  8. # anacron unless on AC power, so as to avoid running down the battery.
  9. # (Things like the slocate updatedb cause a lot of IO.)  Rather than
  10. # trying to second-guess which events reflect having or not having
  11. # power, we just try to run anacron every time and let it abort if
  12. # there's no AC.  You'll see a message on the cron syslog facility 
  13. # (typically /var/log/cron) if it does run.
  14.  
  15. case "$1" in
  16.     resume|thaw)
  17.     start -q anacron || :
  18.     ;;
  19.     suspend|hibernate)
  20.     stop -q anacron || :
  21.     ;;
  22. esac
  23.